#footerLink1,
#footerLink2 {
	position: relative;
	transition: color 0.3s ease, transform 0.3s ease;
}

#footerLink1:hover,
#footerLink2:hover {
	color: #007bff;
	transform: scale(1.1);
}

#footerLink1:after,
#footerLink2:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 0;
	height: 2px;
	background-color: #007bff;
	transition: width 0.3s ease;
}

#footerLink1:hover:after,
#footerLink2:hover:after {
	width: 100%;
}

body {
	background-image: url('https://wallpaperaccess.com/full/1393334.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	font-family: 'Arial', sans-serif;
}

#currentYear1 {
	text-align: end;
}

.login-container {
	background-color: rgba(255, 255, 255, 0.85);
	padding: 40px 35px;
	border-radius: 12px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	width: 350px;
	animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

h2 {
	text-align: center;
	font-weight: bold;
	font-size: 1.8rem;
	margin-bottom: 20px;
	color: #333;
}

.form-group label {
	font-weight: 600;
	color: #555;
}

.form-control {
	border-radius: 10px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	margin-bottom: 15px;
	height: 45px;
}

.form-control:focus {
	border-color: #007bff;
	box-shadow: 0 0 5px rgba(0, 123, 255, 0.4);
}

.btn-primary {
	width: 100%;
	padding: 12px;
	border-radius: 25px;
	background-color: #007bff;
	border: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: background-color 0.3s;
}

.btn-primary:hover {
	background-color: #0056b3;
}

.refresh-btn {
	cursor: pointer;
	font-size: 20px;
	color: #007bff;
}

.refresh-btn i {
	transition: transform 0.3s ease;
}

.refresh-btn:hover i {
	transform: rotate(180deg);
}

.text-danger {
	color: #d9534f;
	font-size: 14px;
	text-align: center;
	display: none;
}

#captchaContainer {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

#captchaImage {
	width: 120px;
	height: 40px;
	background-color: #fff;
	text-align: center;
	line-height: 40px;
	font-size: 18px;
	font-weight: bold;
	color: #333;
	margin-right: 10px;
	border-radius: 6px;
}

footer {
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
	text-align: center;
	padding: 15px;
	position: fixed;
	bottom: 0;
	width: 100%;
	font-size: 14px;
}

footer a {
	color: #ddd;
	text-decoration: none;
	transition: color 0.3s;
}

footer a:hover {
	color: #fff;
}

@media (max-width: 600px) {
	.login-container {
		width: 90%;
		padding: 25px;
	}

	h2 {
		font-size: 1.5rem;
	}
}

.motivational-text {
	font-size: 2.5rem;
	font-weight: bold;
	color: #fff;
	text-align: center;
	margin-bottom: 40px;
	background: linear-gradient(45deg, #ff7e5f, #feb47b);
	background-clip: text;
	transition: transform 0.3s ease;
}

.motivational-text:hover {
	transform: scale(1.05);
}

.motivational-text span {
	font-size: 1.5rem;
	font-weight: normal;
	display: block;
	margin-top: 20px;
}

.container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
}

.motivational-container {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.login-form-container {
	flex: 1;
	display: flex;
	justify-content: center;
}

/* Modal Overlay */
 #modal {
   display: none;
   position: fixed;
   top: 0; left: 0;
   width: 100%; height: 100%;
   background: rgba(0, 0, 0, 0.5);
   backdrop-filter: blur(4px);
   justify-content: center;
   align-items: center;
   z-index: 9999;
   animation: fadeIn 0.3s ease-in-out;
 }

 /* Modal Content Box */
 .modal-box {
   background: #ffffff;
   color: #333;
   padding: 30px 25px;
   border-radius: 12px;
   width: 90%;
   max-width: 600px;
   max-height: 80vh;
   overflow-y: auto;
   box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
   position: relative;
   animation: slideUp 0.4s ease-out;
   font-family: 'Segoe UI', sans-serif;
 }

 /* Close Button */
 .modal-box button {
   position: absolute;
   top: 12px;
   right: 15px;
   background: transparent;
   border: none;
   font-size: 22px;
   cursor: pointer;
   color: #999;
   transition: color 0.2s ease;
 }

 .modal-box button:hover {
   color: #ff3b3b;
 }

 /* Title Styling */
 #modalTitle {
   margin-top: 0;
   font-size: 22px;
   color: #0066cc;
   margin-bottom: 15px;
   border-bottom: 1px solid #eee;
   padding-bottom: 8px;
 }

 /* Content Styling */
 #modalContent {
   list-style: none;
   padding-left: 0;
 }

 #modalContent li {
   margin-bottom: 20px;
   line-height: 1.6;
   font-size: 15px;
 }

 #modalContent li em {
   display: block;
   margin-top: 5px;
   color: #666;
   font-style: italic;
 }

 /* Animations */
 @keyframes fadeIn {
   from { opacity: 0; }
   to   { opacity: 1; }
 }

 @keyframes slideUp {
   from { transform: translateY(40px); opacity: 0; }
   to   { transform: translateY(0); opacity: 1; }
 }